home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Turnbull China Bikeride
/
Turnbull China Bikeride - Disc 2.iso
/
STUTTGART
/
LANG
/
AOF
/
DECAOF
/
decaof
/
cproto_h
next >
Wrap
Text File
|
1992-11-20
|
379b
|
19 lines
/*
* protect non-ANSI C Compilers from function prototype arguments
*
* Andy Duplain, BT Customer Systems, Brighton, UK. duplain@btcs.bt.co.uk
*/
#ifndef __CPROTO_H
#define __CPROTO_H
#if defined (__STDC__) || defined(__cplusplus)
#define P__(s) s
#define ANSI_C
#else /* PCC compiler */
#define P__(s) ()
#undef ANSI_C
#endif /* ANSI compiler */
#endif /* __CPROTO_H */